home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
lang
/
c--ex101
/
obj
/
objtest.c--
< prev
next >
Wrap
Text File
|
1994-07-12
|
556b
|
24 lines
/*
NAME: OBJTEST.C--
DESCRIPTION: This program must be compiled to an OBJ file for use with
C_TEST.C and PAS_TEST.PAS.
To build an OBJ file, on the compiler options window select
OBJ file as the output type, and set jump to main() as
none.
*/
?include "WRITE.H--"
void far display_word (word wordvalue)
{
@ WRITEWORD(wordvalue);
@ WRITELN();
}
word far double_it (word wordvalue)
{
return(wordvalue*2);
}
/* end of OBJTEST.C-- */